home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_08_05 / 8n05076c < prev    next >
Text File  |  1990-04-17  |  214b  |  16 lines

  1.  
  2. Listing 9:
  3. main()
  4. {
  5.     test();
  6.     printf("test() called, testcalled = %d\n", testcalled);
  7.     test();
  8.     printf("test() called, testcalled = %d\n", testcalled);
  9.     exit(0);
  10. }
  11. static test()
  12. {
  13.     testcalled++;
  14. }
  15.  
  16.